home *** CD-ROM | disk | FTP | other *** search
/ Internet News 2001 March / Internet News 2001-03 - CD-ROM.rar / IN200103.ISO / Linux / ETLinux / _7eboot-0.70a.flp / init / NETLOAD < prev    next >
Text File  |  2000-03-06  |  555b  |  33 lines

  1. #!/bin/sh
  2. #
  3. # netload - load packages from a remote ftp or web server
  4. # written by <mdfranz@txdirect.net> Matthew Franz
  5. # (c) 1999 OpenSEC under the GPL
  6. #
  7.  
  8. export URL
  9.  
  10. if [ "$URL" = "" -o "$URL" = "prompt" ]
  11. then
  12.     echo -n "Enter URL of Trinux package server: "
  13.     read URL
  14. else
  15.     echo "Retrieving packages from: $URL"
  16. fi
  17.  
  18.  
  19.     echo "The following packages will be loaded:"
  20.     echo  $PKGLIST
  21.  
  22.     echo "This is configured in /conf/pkgconf and /conf/pkglist"
  23.     echo "on the boot floppy"
  24.  
  25.     cd /
  26.  
  27.     echo "Downloading packages..."
  28.  
  29.     for i in $PKGLIST
  30.     do
  31.         getpkg $i
  32.     done
  33.